mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
37 lines
823 B
Elixir
37 lines
823 B
Elixir
defmodule PhilomenaMedia.Analyzers.Jpeg do
|
|
@moduledoc false
|
|
|
|
alias PhilomenaMedia.Analyzers.Analyzer
|
|
alias PhilomenaMedia.Analyzers.Result
|
|
|
|
@behaviour Analyzer
|
|
|
|
@spec analyze(Path.t()) :: Result.t()
|
|
def analyze(file) do
|
|
stats = stats(file)
|
|
|
|
%Result{
|
|
extension: "jpg",
|
|
mime_type: "image/jpeg",
|
|
animated?: false,
|
|
duration: stats.duration,
|
|
dimensions: stats.dimensions
|
|
}
|
|
end
|
|
|
|
defp stats(file) do
|
|
case System.cmd("mediastat", [file]) do
|
|
{output, 0} ->
|
|
[_size, _frames, width, height, num, den] =
|
|
output
|
|
|> String.trim()
|
|
|> String.split(" ")
|
|
|> Enum.map(&String.to_integer/1)
|
|
|
|
%{dimensions: {width, height}, duration: num / den}
|
|
|
|
_ ->
|
|
%{dimensions: {0, 0}, duration: 0.0}
|
|
end
|
|
end
|
|
end
|