alpha
Login
or
Join now
yemou.pink
/
scripts
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
vidcompress: adjust usage statement
author
yemou
date
1 week ago
(Jun 14, 2026, 4:02 AM -0400)
commit
3ceb2eb9
3ceb2eb93ff5d4ff51093fb5a62eecd42e1f15f5
parent
31a5554c
31a5554cff017dcd3756e600ad684c637146d749
+6
-6
1 changed file
Expand all
Collapse all
Unified
Split
scritps
vidcompress
+6
-6
scritps/vidcompress
Reviewed
···
1
1
#!/bin/sh
2
2
usage() {
3
3
-
printf '%b\n' "${0##*/} -i <input_file> [OPTIONS]" \
4
4
-
"\noptions:" \
5
5
-
"\t-c CODEC - video codec to use (default: libx264)" \
6
6
-
"\t-h - display this message" \
7
7
-
"\t-o FILE - output file (default: out.ext)" \
8
8
-
"\t-p PRESET - ffmpeg encoding preset to use (default: veryslow)" \
3
3
+
printf '%b\n' "${0##*/} -i <input_file> [OPTIONS]" \
4
4
+
"\noptions:" \
5
5
+
"\t-c CODEC - video codec to use (default: libx264)" \
6
6
+
"\t-h - display this message" \
7
7
+
"\t-o FILE - output file (default: out.ext)" \
8
8
+
"\t-p PRESET - encoding preset to use (default: veryslow)" \
9
9
"\t-t FILE_SIZE - file size to target in MiB (default: 50)"
10
10
}
11
11