Packages

FFmpeg Video and Audio Generator for Membrane Multimedia Framework

Current section

Files

Jump to
membrane_ffmpeg_generator lib ffmpeg_generator common.ex
Raw

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