repos / dotfiles

my dotfiles

commit
58b9eaf
parent
57d7f1f
author
Eric Bower
date
2025-08-09 21:35:17 -0400 EDT
chore: video transcoding and other
3 files changed,  +36, -1
A bin/downmix_aac
+7, -0
1@@ -0,0 +1,7 @@
2+#!/usr/bin/env fish
3+
4+ffmpeg -i "$argv[1]" \
5+  -c:v copy \
6+  -c:a aac \
7+  -af "pan=stereo|c0=c2+0.30*c0+0.30*c4|c1=c2+0.30*c1+0.30*c5" \
8+  "$argv[2]"
A copyparty.conf
+28, -0
 1@@ -0,0 +1,28 @@
 2+# append some arguments to the commandline;
 3+# accepts anything listed in --help (leading dashes are optional)
 4+# and inline comments are OK if there is 2 spaces before the '#'
 5+[global]
 6+  p: 8086, 3939  # listen on ports 8086 and 3939
 7+  e2dsa  # enable file indexing and filesystem scanning
 8+  e2ts   # and enable multimedia indexing
 9+  z, qr  # and zeroconf and qrcode (you can comma-separate arguments)
10+
11+# create users:
12+[accounts]
13+  erock: copyparty   # username: password
14+  k: k
15+
16+# create volumes:
17+[/]         # create a volume at "/" (the webroot), which will
18+  /home/erock/copyparty  # share the contents of "." (the current directory)
19+  accs:
20+    r: *    # everyone gets read-access, but
21+    rwmda: erock  # the user "ed" gets read-write
22+
23+# share /mnt/nas as /nas and let anyone read it
24+# (this will replace any folder called "nas" in the webroot)
25+[/nas]
26+  /mnt/nas
27+  accs:
28+    r: *
29+    rwmda: erock
M dot_ssh/config
+1, -1
1@@ -9,7 +9,7 @@ Host localhost
2     UserKnownHostsFile /dev/null
3 
4 Host fox
5-    HostName 192.168.88.188
6+    HostName 192.168.88.232
7     User erock
8     IdentityFile ~/.ssh/id_ed25519
9