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 \| <?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 |
First install vscode and configure it as you please. During setup ensure the checkbox for the PATH is checked
https://davidtranscend.com/blog/windows-terminal-workflow-guide/ (enabling developer mode is not required anymore)
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A simple clock</title> | |
| </head> | |
| <body translate="no" > |
| <?php | |
| kirbytext::$tags['srcset'] = array( | |
| 'attr' => array( | |
| 'retina', | |
| 'alt', | |
| 'class' | |
| ), | |
| 'html' => function($tag) { |
| <!-- create the complete html img tag for a given image --> | |
| <?= $page->image()->html() ?> | |
| <!-- modify the attributes of the img tag --> | |
| <?= $page->image()->html(['class' => 'myImage']) ?> | |
| <!-- resize an image first and then get the img tag for it --> | |
| <?= $page->image()->resize(300,200)->html() ?> |
| <? | |
| ///////////////////// | |
| // slack2html | |
| // by @levelsio | |
| ///////////////////// | |
| // | |
| ///////////////////// | |
| // WHAT DOES THIS DO? | |
| ///////////////////// | |
| // |
| # pass the default character set | |
| AddDefaultCharset utf-8 | |
| php_flag short_open_tag on | |
| ErrorDocument 404 /error | |
| # Kirby .htaccess | |
| # exclude panel from trailing slash removal |
| <?php | |
| /** | |
| * Instructions: | |
| * | |
| * 1. Put this into the document root of your Kirby site | |
| * 2. Make sure to setup the base url for your site correctly | |
| * 3. Run this script with `php statify.php` or open it in your browser | |
| * 4. Upload all files and folders from static to your server | |
| * 5. Test your site |
| #!/bin/sh | |
| #Put in /etc/adblock.sh | |
| #Script to grab and sort a list of adservers and malware | |
| #Check proper DHCP config and, if necessary, update it | |
| uci get dhcp.@dnsmasq[0].addnhosts > /dev/null 2>&1 || uci add_list dhcp.@dnsmasq[0].addnhosts=/etc/block.hosts && uci commit | |
| #Leave crontab alone, or add to it | |
| grep -q "/etc/adblock.sh" /etc/crontabs/root || echo "0 4 * * 0,3 sh /etc/adblock.sh" >> /etc/crontabs/root |