You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sccyou
+32-8Lines changed: 32 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,13 @@
2
2
# sccyou
3
3
# script to apply the readeia608 filter and interpret the results in order to create an scc (and optionally an srt) output from standard definition video files which contain EIA 608 data
4
4
# thanks to Paul Mahol, Ben Turkus
5
-
# Copyright (c) 2019-2022, Dave Rice, see License.txt
5
+
# Copyright (c) 2019-2024, Dave Rice, see License.txt
6
6
7
7
VERSION="0.2"
8
8
9
9
SEARCH_FIRST_X_SECONDS_FOR_CAPTION_LINE=20
10
10
11
+
SCRIPTDIR="$(dirname "${0}")"
11
12
FFMPEG_INPUT_OPTIONS+=(-v 0)
12
13
FFPROBE_INPUT_OPTIONS+=(-v 0)
13
14
@@ -44,6 +45,12 @@ $(basename "${0}") ${VERSION}
44
45
Information about the scc format is available at http://www.theneitherworld.com/mcpoodle/SCC_TOOLS/DOCS/
45
46
46
47
Dependencies: ffmpeg 4.3 or later
48
+
49
+
-F <path> (provide a custom ffmpeg path. ffprobe is presumed to neighbor ffmpeg)
50
+
51
+
If an ffmpeg binary is provided with the '-F <path>' option that will be used,
52
+
else if an ffmpeg binary exists within the same directory of sccyou, that will
0 commit comments