Skip to content

Instantly share code, notes, and snippets.

@joachimesque
joachimesque / config.php
Created January 4, 2018 15:19
CSP headers with a script-src nonce directive for Kirby
<?php
/*
---------------------------------------
CSP
---------------------------------------
*/
$csp_nonce = base64_encode(random_bytes(20));
$csp_header = "Content-Security-Policy: default-src 'self'; script-src 'self' 'nonce-" . $csp_nonce . "';";
// set `csp-nonce` so it's accessable
@neingeist
neingeist / ffmpeg.md
Last active November 6, 2025 01:15
ffmpeg cheat sheet

Set audio language tag

E.g. for the first audio track (a:0). This example also resets the title of the audio track.

ffmpeg -i Godzilla.vs..Megalon.1973.1080p.mp4 \
    -c copy \
    \
    -metadata:s:a:0 language=jpn \