Skip to content

Instantly share code, notes, and snippets.

Get/set ID3 meta tags using ffmpeg

A quick guide on how to read/write/modify ID3 metadata tags for audio / media files using ffmpeg.

FFmpeg has a free-form command line option that allows the user to specify key-value-pairs for encoding metadata. Let's take a look.

1. Read ID3 metadata

To list all global metadata tags for a media file, just set an input but no output file.

@sergeyklay
sergeyklay / phpenv-install.md
Last active March 3, 2024 10:45
Multiple PHP versions using phpenv and php-build

Multiple PHP versions using phpenv and php-build

Install dependecies

Debian/Ubuntu users

sudo apt install \
  autoconf \
  bison \
@enricofoltran
enricofoltran / main.go
Last active April 1, 2024 00:17
A simple golang web server with basic logging, tracing, health check, graceful shutdown and zero dependencies
package main
import (
"context"
"flag"
"fmt"
"log"
"net/http"
"os"
"os/signal"
2011 - Blue Corona - Analytics Intern - $10/hr
2012 - UMD - Marketing Intern - $10/hr
2012 - BSD - Analytics Architect - $37,000
2013 - BSD - Analytics Architect - $45,000
2014 - BSD - Analytics Architect - $50,000
2015 - Viget - Digital Analyst - $65,000
2016 - Viget - Digital Analyst - $70,000
2017 - Viget - Digital Analyst - $74,000
2018 - Viget - Digital Analyst - $80,000
2019 - Viget - Digital Analyst - $82,000
@prologic
prologic / LearnGoIn5mins.md
Last active June 17, 2024 14:24
Learn Go in ~5mins