-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathffdownscale
More file actions
executable file
·252 lines (218 loc) · 7.41 KB
/
ffdownscale
File metadata and controls
executable file
·252 lines (218 loc) · 7.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#!/usr/bin/env bash
# ffdownscale -- down-convert videos to SD (480p) for playback on obsolete systems
. lib.bash || exit
usage() {
echo "Usage: $0 <files>"
echo
echo_opt "-f <ext>" "force output MP4 or MKV (preserves fancy subtitles)"
echo_opt "-o <dir>" "put converted files in another directory"
echo_opt "-y" "overwrite existing output files"
echo
echo_opt "-h <height>" "specify output height (default 480)"
echo_opt "-w <width>" "specify *maximum* output width"
echo_opt "-c <crf>" "specify CRF (23 is default, 29 is half-quality)"
echo_opt "-b" "use Baseline profile for H.264 (faster decoding)"
}
# 23 is normal, 29 is half the bitrate
crf=23
outdir=""
opt_height=480
opt_forceformat=""
opt_overwrite=0
opt_baseline=0
opt_autoclamp=1
opt_maxwidth=0
# misc notes:
# - mpeg2 gets huge at high bitrates
# - "You will get better quality blowing up SD res video that has been well
# encoded with a reasonable bitrate, than having HD res video encoded at
# a poor bitrate."
# - mpeg1 may be better than mpeg2
while getopts ":bh:o:c:f:w:y" OPT; do
case $OPT in
b) opt_baseline=1;;
h) opt_height=$OPTARG;;
o) outdir=$OPTARG;;
c) crf=$OPTARG;;
f) opt_forceformat=${OPTARG,,};;
k) opt_forceformat=mkv;;
w) opt_maxwidth=$OPTARG;;
y) opt_overwrite=1;;
*) lib:die_getopts;;
esac
done; shift $((OPTIND-1))
if (( ! $# )); then
vdie "No input files specified"
fi
# Clamp to an 1024x768 screen (some movies are very wide, resulting in 1152x480!)
# See also opt_autoclamp
if (( ! opt_maxwidth )); then
if (( opt_height >= 1080 )); then
opt_maxwidth=1920
elif (( opt_height >= 720 )); then
opt_maxwidth=1280
else
opt_maxwidth=1024
fi
fi
# H.264 -- CRF 23 is default, 18 is near-lossless
# -6 = double bitrate, +6 = half bitrate
if [[ $crf == half ]]; then
crf=29
fi
if (( crf > 29 )); then
warn "Using CRF $crf for below-half bitrate"
elif (( crf > 23 )); then
warn "Using CRF $crf for below-normal bitrate"
elif (( crf < 18 )); then
vdie "CRF $crf is too low (18 is already almost lossless)"
elif (( crf < 23 )); then
warn "Using CRF $crf for above-normal bitrate"
fi
if [[ $outdir ]]; then
mkdir -p "$outdir/" || exit
fi
# Only support H.264-capable outputs for now. Eventually might include MOV.
if [[ $opt_forceformat && $opt_forceformat != @(mkv|mp4) ]]; then
vdie "unsupported output format '$opt_forceformat'"
fi
# Global ffmpeg options
ffoptions=(-hide_banner -v warning -stats)
# Overwrite (we do our own pre-check)
ffoptions+=(-y)
# How wide would a 4:3 screen at $opt_height would be?
#max43width=`bc <<< "scale=10; a=4/3; scale=0; $opt_height*a"`
for arg; do
srcfile="$arg"
# Decide output format. Assume that the input is either MKV or MP4, as
# other formats are unlikely to be large in the first place. If the
# input is MKV, by default keep it as MKV to preserve the fancy .ass
# subtitles.
if [[ ${arg,,} == *.@(mkv|mp4) ]]; then
dstext=${opt_forceformat:-${arg##*.}}
else
dstext=${opt_forceformat:-mp4}
fi
if [[ ${srcfile##*/} == *.conv* ]]; then
warn "Skipping '$srcfile' (looks like an output file)"
continue
fi
# Use -v error to hide "Unsupported codec" for .ttf attachments
probe=$(ffprobe -hide_banner -v error -show_format -show_streams -of json "$srcfile")
if (( $? )); then
err "Failed to probe '$srcfile'"
continue
fi
width=$(jq -r '.streams | map(select(.codec_type == "video")) | .[0].width' <<< "$probe")
height=$(jq -r '.streams | map(select(.codec_type == "video")) | .[0].height' <<< "$probe")
num_subtitles=$(jq -r '.streams | map(select(.codec_type == "subtitle")) | length' <<< "$probe")
num_attachs=$(jq -r '.streams | map(select(.codec_type == "attachment")) | length' <<< "$probe")
if (( width <= 1000 && height <= opt_height )); then
warn "Skipping '$srcfile' (already below target at ${width}x${height})"
continue
fi
# Calculate WxH for current aspect ratio
outheight=$opt_height
#outwidth=`python -c "import math; a=$width/$height; print(math.trunc($outheight*a/2)*2))"`
outwidth=`bc <<< "scale=10; a=$width/$height; scale=0; ($outheight*a/2)*2"`
# Tag as "conv480p" even if the next check decides to reduce height
convtag="${outheight}p"
# Would it be too wide for a 1024x768 display?
if (( outwidth > opt_maxwidth )); then
if (( opt_autoclamp )); then
newwidth=$opt_maxwidth
newheight=`bc <<< "scale=10; a=$width/$height; scale=0; ($newwidth/(a*2))*2"`
warn "Output ${outwidth}x${outheight} would be too wide, clamping to ${newwidth}x${newheight}"
outwidth=$newwidth
outheight=$newheight
else
warn "Output ${outwidth}x${outheight} would be too wide for the display, but proceeding anyway"
fi
fi
# Output file name
dstfile="${srcfile##*/}"
dstfile="${dstfile%.*}"
#dstfile="${dstfile/%' ['[0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]']'}"
dstfile="${dstfile//'(720p)'}"
dstfile="${dstfile//'[720p]'}"
dstfile="${dstfile//' '/' '}"
dstfile="${dstfile%%+(' ')}"
dstfile="$dstfile.conv$convtag.$dstext"
dstfile="${outdir:-"$(dirname "$srcfile")"}/$dstfile"
if [[ -e $dstfile ]] && ! (( opt_overwrite )); then
warn "Skipping '$srcfile' (converted file already present)"
continue
fi
settitle "ffdownscale: ${srcfile##*/}"
duration=$(interval "$(jq -r '.format.duration | tonumber | round' <<< "$probe")")
lib:msg log2 "Converting '$srcfile' (duration: $duration) to .${dstfile##*.}"
# Video options
# See "-help encoder=libx264"
# Note: -crf is H.264-only, not for MPEG4(AVI)
# Note: If an output format needs a multiple of 16, do '(oh*a/16)*16'
ffconvert=(-c:v libx264)
ffconvert+=(-vf scale="trunc(oh*a/2)*2:$outheight")
ffconvert+=(-crf "$crf")
# In case legacy systems need it
if (( opt_baseline )); then
ffconvert+=(-profile:v baseline -level 3.0)
fi
#ffconvert+=(-profile:v main)
# In case it's needed to force 8-bit
#ffconvert+=(-vf format=yuv420p)
# Audio options
# Don't use Vorbis
ffconvert+=(-c:a aac)
# Subtitles
do_attachment_mux=0
if [[ $srcfile == *.mkv && $dstext == mp4 ]]; then
# MP4 requires a specific subtitle format
ffconvert+=(-c:s mov_text)
elif [[ $srcfile == *.mkv && $dstext == mkv ]]; then
# Copy SRT subs and try to preserve fonts as well
ffconvert+=(-c:s copy)
if (( num_attachs > 0 )); then
do_attachment_mux=1
fi
else
# MP4 to MP4
ffconvert+=(-c:s copy)
fi
if [[ $TEST ]]; then
ffconvert+=(-t 60s)
fi
case $dstext in
mkv) outformat=matroska;;
mp4) outformat=mp4;;
*) die "BUG: no outformat for .$dstext";;
esac
# Downscale
nice ffmpeg "${ffoptions[@]}" -i "$srcfile" "${ffconvert[@]}" \
-f "$outformat" "$dstfile.part" || confirm || exit
# Remux to include attachments. Do this as a separate step as otherwise
# the 0:t would break ffmpeg's progress reporting. Use 0:t? to prevent
# failures in case there are no attachments.
if (( do_attachment_mux )); then
vmsg "remuxing to include attachments"
ffmpeg "${ffoptions[@]}" -i "$srcfile" -i "$dstfile.part" \
-map 1:v -map 1:a -map 1:s -map 0:t? -c copy \
-f "$outformat" "$dstfile" || confirm || exit
rm -f "$dstfile.part"
else
mv "$dstfile.part" "$dstfile"
fi
case $HOSTNAME in
myth) temphigh=75 templow=50;;
*) temphigh=95 templow=60;;
esac
if (( temphigh && templow )); then
if temp=`cputemp -1r` && (( temp && temp >= temphigh )); then
vmsg "CPU temperature above $temphigh°C (currently $temp°C)"
sleep 60
while temp=`cputemp -1r` && (( temp > templow )); do
vmsg "waiting for CPU temperature to drop to $templow°C (currently $temp°C)"
sleep 60
done
fi
fi
done