aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2017-02-27 11:35:54 +0100
committerneodarz <neodarz@neodarz.net>2017-02-27 11:35:54 +0100
commit3f92d6cce34f00cff5c273b14a5c5191d631a131 (patch)
treeb0a7bfc1b5241a54b0ed74c133efdb47a71a7783 /mix.exs
parent708dc012953f555e0434b366cb004977d0821979 (diff)
downloadthe_transcriber_backend-3f92d6cce34f00cff5c273b14a5c5191d631a131.tar.xz
the_transcriber_backend-3f92d6cce34f00cff5c273b14a5c5191d631a131.zip
Add the detection of the file duration
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index 4e83937..7723483 100644
--- a/mix.exs
+++ b/mix.exs
@@ -19,7 +19,7 @@ defmodule TheTranscriberBackend.Mixfile do
def application do
[mod: {TheTranscriberBackend, []},
applications: [:phoenix, :phoenix_pubsub, :phoenix_html, :cowboy, :logger, :gettext,
- :phoenix_ecto, :postgrex]]
+ :phoenix_ecto, :postgrex, :ffmpex]]
end
# Specifies which paths to compile per environment.
@@ -38,7 +38,8 @@ defmodule TheTranscriberBackend.Mixfile do
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.11"},
{:cowboy, "~> 1.0"},
- {:ja_serializer, "~> 0.11.2"}]
+ {:ja_serializer, "~> 0.11.2"},
+ {:ffmpex, "~> 0.4.0"}]
end
# Aliases are shortcuts or tasks specific to the current project.