Skip to content

Instantly share code, notes, and snippets.

Title title Note Heading Depth
Manifest
_Anti Mediocracy Manifesto for Software Development_
0

[TITLE]

One

@protrolium
protrolium / ffmpeg.md
Last active April 8, 2024 11:49
ffmpeg guide

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

You can get the list of installed codecs with:

@glisha
glisha / arduino_ds18b20.c
Created June 30, 2012 18:10
Хаклаб температурни сензори (https://cosm.com/feeds/64655)
#include <OneWire.h>
#include <LiquidCrystal.h>
// For every sensor found it outputs to serial:
// SensorID,CurrentTemp,Readout time,Current time
// Info at: http://wiki.spodeli.org/Хаклаб/Температура
OneWire ds(12); // on pin 12
LiquidCrystal lcd(6, 7, 8, 9, 10, 11);