This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( | |
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" | |
) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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" |