Packages
FFmpeg Video and Audio Generator for Membrane Multimedia Framework
Current section
Files
Jump to
Current section
Files
lib/ffmpeg_generator/common.ex
defmodule Membrane.FFmpegGenerator.Common do
@moduledoc false
# Module providing functions used in both, video and audio generation.
@spec is_dir?(String.t()) :: boolean
def is_dir?(path) do
!String.match?(Path.basename(path), ~r/\./)
end
end