tangled
alpha
login
or
join now
encode42.dev
/
nixos
0
fork
atom
Personal-use NixOS configuration
0
fork
atom
overview
issues
pulls
pipelines
Re-order ffmpeg steps
encode42.dev
3 days ago
42befbda
c3b81eca
+4
-4
1 changed file
expand all
collapse all
unified
split
shells
ffmpeg.nix
+4
-4
shells/ffmpeg.nix
···
17
17
BITRATE="''${2:-128k}"
18
18
19
19
${ffmpegExe} -i $INPUT_FILE_NAME \
20
20
-
-map_metadata -1 \
21
21
-
-fflags +bitexact \
22
22
-
-flags:v +bitexact \
23
23
-
-flags:a +bitexact \
24
20
-b:a $BITRATE \
25
21
-c:a libopus \
26
22
$TEMPORARY_FILE_NAME
27
23
28
24
${ffmpegExe} -i $TEMPORARY_FILE_NAME \
25
25
+
-map_metadata -1 \
26
26
+
-fflags +bitexact \
27
27
+
-flags:v +bitexact \
28
28
+
-flags:a +bitexact \
29
29
-c:a copy \
30
30
-f mp4 \
31
31
$TARGET_FILE_NAME