-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathffmpeg.rb
More file actions
290 lines (255 loc) · 10.1 KB
/
ffmpeg.rb
File metadata and controls
290 lines (255 loc) · 10.1 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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# frozen_string_literal: true
$LOAD_PATH.unshift File.dirname(__FILE__)
require 'logger'
require 'shellwords'
require_relative 'ffmpeg/command_args'
require_relative 'ffmpeg/command_args/color_space_injection'
require_relative 'ffmpeg/command_args/composable'
require_relative 'ffmpeg/command_args/network_streaming'
require_relative 'ffmpeg/dash'
require_relative 'ffmpeg/errors'
require_relative 'ffmpeg/filter'
require_relative 'ffmpeg/filters/format'
require_relative 'ffmpeg/filters/fps'
require_relative 'ffmpeg/filters/grayscale'
require_relative 'ffmpeg/filters/scale'
require_relative 'ffmpeg/filters/set_dar'
require_relative 'ffmpeg/filters/set_sar'
require_relative 'ffmpeg/filters/silence_detect'
require_relative 'ffmpeg/filters/split'
require_relative 'ffmpeg/io'
require_relative 'ffmpeg/media'
require_relative 'ffmpeg/preset'
require_relative 'ffmpeg/presets/aac'
require_relative 'ffmpeg/presets/dash'
require_relative 'ffmpeg/presets/dash/aac'
require_relative 'ffmpeg/presets/dash/h264'
require_relative 'ffmpeg/presets/h264'
require_relative 'ffmpeg/raw_command_args'
require_relative 'ffmpeg/reporters/output'
require_relative 'ffmpeg/reporters/progress'
require_relative 'ffmpeg/reporters/silence'
require_relative 'ffmpeg/status'
require_relative 'ffmpeg/transcoder'
require_relative 'ffmpeg/version'
# The FFMPEG module allows you to customise the behaviour of the FFMPEG library,
# and provides a set of methods to directly interact with the ffmpeg and ffprobe binaries.
#
# @example
# FFMPEG.logger = Logger.new($stdout)
# FFMPEG.io_timeout = 60
# FFMPEG.io_encoding = Encoding::UTF_8
# FFMPEG.ffmpeg_binary = '/usr/local/bin/ffmpeg'
# FFMPEG.ffprobe_binary = '/usr/local/bin/ffprobe'
module FFMPEG
class << self
attr_writer :logger, :reporters
attr_accessor :threads, :timeout
# Get the FFMPEG logger.
#
# @return [Logger]
def logger
@logger ||= Logger.new($stdout, level: Logger::INFO)
end
# Get the reporters that are used by default to parse the output of the ffmpeg command.
def reporters
@reporters ||= [FFMPEG::Reporters::Progress]
end
# Get the timeout that's used when waiting for ffmpeg output.
# Defaults to 30 seconds.
#
# @return [Integer]
def io_timeout
FFMPEG::IO.timeout
end
# Set the timeout that's used when waiting for ffmpeg output.
def io_timeout=(timeout)
FFMPEG::IO.timeout = timeout
end
# Get the encoding that's used when reading ffmpeg output.
# Defaults to UTF-8.
#
# @return [Encoding]
def io_encoding
FFMPEG::IO.encoding
end
# Set the encoding that's used when reading ffmpeg output.
def io_encoding=(encoding)
FFMPEG::IO.encoding = encoding
end
# Set the path to the ffmpeg binary.
#
# @param path [String]
# @return [String]
# @raise [Errno::ENOENT] If the ffmpeg binary is not an executable.
def ffmpeg_binary=(path)
if path.is_a?(String) && !File.executable?(path)
raise Errno::ENOENT,
"The ffmpeg binary, '#{path}', is not executable"
end
@ffmpeg_binary = path
@ffmpeg_version = nil
end
# Get the path to the ffmpeg binary.
# Defaults to the first ffmpeg binary found in the PATH.
#
# @return [String]
def ffmpeg_binary
@ffmpeg_binary ||= which('ffmpeg')
end
# Get the version of the ffmpeg binary.
#
# @return [String] The version string (e.g., "4.4.6", "8.0")
def ffmpeg_version
@ffmpeg_version ||= begin
stdout, = FFMPEG::IO.capture3(ffmpeg_binary, '-version')
stdout[/ffmpeg version (\d+\.\d+(?:\.\d+)?)/i, 1]
end
end
# Check if the ffmpeg version matches the given pattern.
#
# @param pattern [String, Regexp] The version pattern to match.
# @return [Boolean] True if the ffmpeg version matches the pattern, false otherwise.
def ffmpeg_version?(pattern)
return false unless ffmpeg_version
return pattern.match?(ffmpeg_version) if pattern.is_a?(Regexp)
ffmpeg_version.start_with?(pattern.to_s)
end
# Safely captures the standard output and the standard error of the ffmpeg command.
#
# @param args [Array<String>] The arguments to pass to ffmpeg.
# @return [Array<String, Process::Status>] The standard output, the standard error, and the process status.
def ffmpeg_capture3(*args)
logger.debug(self) { "ffmpeg -y #{Shellwords.join(args)}" }
FFMPEG::IO.capture3(ffmpeg_binary, '-y', *args)
end
# Starts a new ffmpeg process with the given arguments.
# Yields the standard input, the standard output
# and the standard error streams, as well as the child process
# to the specified block.
#
# @param args [Array<String>] The arguments to pass to ffmpeg.
# @yieldparam stdin (+IO+) The standard input stream.
# @yieldparam stdout (+FFMPEG::IO+) The standard output stream.
# @yieldparam stderr (+FFMPEG::IO+) The standard error stream.
# @yieldparam wait_thr (+Thread+) The child process thread.
# @return [Process::Status, Array<IO, Thread>]
def ffmpeg_popen3(*args, &)
logger.debug(self) { "ffmpeg -y #{Shellwords.join(args)}" }
FFMPEG::IO.popen3(ffmpeg_binary, '-y', *args, &)
end
# Execute a ffmpeg command.
#
# @param args [Array<String>] The arguments to pass to ffmpeg.
# @param reporters [Array<Class<FFMPEG::Reporters::Output>>] The reporters to use to parse the output.
# @yield [report] Reports from the ffmpeg command (see FFMPEG::Reporters).
# @return [FFMPEG::Status]
def ffmpeg_execute(*args, status: nil, reporters: nil, timeout: nil)
status ||= FFMPEG::Status.new
reporters ||= self.reporters
timeout ||= self.timeout
status.bind! do
ffmpeg_popen3(*args) do |_stdin, stdout, stderr, wait_thr|
Timeout.timeout(timeout) do
stderr.each(chomp: true) do |line|
reporter = reporters.find { |r| r.match?(line) }
status.output.puts(line) if reporter.nil? || reporter.log?
next unless reporter && block_given?
yield reporter.new(line)
end
::IO.copy_stream(stdout, status.output) if status.output.string.empty?
wait_thr.value
end
end
end
end
# Execute a ffmpeg command and raise an error
# if the subprocess did not finish successfully.
#
# @param args [Array<String>] The arguments to pass to ffmpeg.
# @param reporters [Array<FFMPEG::Reporters::Output>] The reporters to use to parse the output.
# @yield [report] Reports from the ffmpeg command (see FFMPEG::Reporters).
# @return [FFMPEG::Status]
def ffmpeg_execute!(*args, status: nil, reporters: nil, timeout: nil)
ffmpeg_execute(*args, status:, reporters:, timeout:).assert!
end
# Get the path to the ffprobe binary.
# Defaults to the first ffprobe binary found in the PATH.
#
# @return [String] The path to the ffprobe binary.
# @raise [Errno::ENOENT] If the ffprobe binary cannot be found.
def ffprobe_binary
@ffprobe_binary ||= which('ffprobe')
end
# Set the path of the ffprobe binary.
# Can be useful if you need to specify a path such as /usr/local/bin/ffprobe.
#
# @param [String] path
# @return [String]
# @raise [Errno::ENOENT] If the ffprobe binary is not an executable.
def ffprobe_binary=(path)
if path.is_a?(String) && !File.executable?(path)
raise Errno::ENOENT, "The ffprobe binary, '#{path}', is not executable"
end
@ffprobe_binary = path
@ffprobe_version = nil
end
# Get the version of the ffprobe binary.
#
# @return [String] The version string (e.g., "4.4.6", "8.0")
def ffprobe_version
@ffprobe_version ||= begin
stdout, = FFMPEG::IO.capture3(ffprobe_binary, '-version')
stdout[/ffprobe version (\d+\.\d+(?:\.\d+)?)/i, 1]
end
end
# Check if the ffprobe version matches the given pattern.
#
# @param pattern [String, Regexp] The version pattern to match.
# @return [Boolean] True if the ffprobe version matches the pattern, false otherwise.
def ffprobe_version?(pattern)
return false unless ffprobe_version
return pattern.match?(ffprobe_version) if pattern.is_a?(Regexp)
ffprobe_version.start_with?(pattern.to_s)
end
# Safely captures the standard output and the standard error of the ffmpeg command.
#
# @param args [Array<String>] The arguments to pass to ffprobe.
# @return [Array<String, Process::Status>] The standard output, the standard error, and the process status.
# @raise [Errno::ENOENT] If the ffprobe binary cannot be found.
def ffprobe_capture3(*args)
logger.debug(self) { "ffprobe -y #{Shellwords.join(args)}" }
FFMPEG::IO.capture3(ffprobe_binary, '-y', *args)
end
# Starts a new ffprobe process with the given arguments.
# Yields the standard input, the standard output
# and the standard error streams, as well as the child process
# to the specified block.
#
# @param args [Array<String>] The arguments to pass to ffprobe.
# @yieldparam stdin (+IO+) The standard input stream.
# @yieldparam stdout (+FFMPEG::IO+) The standard output stream.
# @yieldparam stderr (+FFMPEG::IO+) The standard error stream.
# @return [Process::Status, Array<IO, Thread>]
# @raise [Errno::ENOENT] If the ffprobe binary cannot be found.
def ffprobe_popen3(*args, &)
logger.debug(self) { "ffprobe -y #{Shellwords.join(args)}" }
FFMPEG::IO.popen3(ffprobe_binary, '-y', *args, &)
end
# Cross-platform way of finding an executable in the $PATH.
# See http://stackoverflow.com/questions/2108727/which-in-ruby-checking-if-program-exists-in-path-from-ruby
#
# @example
# which('ruby') #=> /usr/bin/ruby
def which(cmd)
exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
exts.each do |ext|
match = File.join(path, "#{cmd}#{ext}")
return match if File.executable?(match)
end
end
raise Errno::ENOENT, "The #{cmd} binary could not be found in the PATH"
end
end
end