Skip to content

Instantly share code, notes, and snippets.

View fabiorzfreitas's full-sized avatar

Fábio fabiorzfreitas

View GitHub Profile
@fabiorzfreitas
fabiorzfreitas / template.yacht.json
Last active January 4, 2023 22:57
Yacht template consisting of selfhosted + Kavita
[
{
"type": 1,
"title": "Airsonic",
"name": "airsonic",
"description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
"image": "lscr.io/linuxserver/airsonic:latest",
"categories": [
"Music"
@fabiorzfreitas
fabiorzfreitas / #grid_thumbs.cmd
Created February 12, 2024 21:49
Creates 3x3 thumbnails preview
(
for %%f in (
*.mp4 *.mkv *.mov *.3gp
) do (
for /f %%g in (
'ffprobe -v error -select_streams v:0 -count_packets -show_entries stream^=nb_read_packets -of default^=nk^=1:nw^=1 "%%f"'
) do (
ffmpeg -y -i "%%f" -filter_complex "select='not(mod(n,floor(%%g/9)))',tile=layout=3x3" -update 1 -frames:v 1 "%%f.png"
)
)