Only optimize option
This commit is contained in:
@ -14,6 +14,7 @@
|
||||
(def audio_quality_thumbnail (:audio_quality_thumbnail config))
|
||||
(def path_videos (:path_videos config))
|
||||
|
||||
|
||||
(defn convertVideo
|
||||
;; Optimize video
|
||||
[e]
|
||||
@ -21,12 +22,14 @@
|
||||
is_thumbnail (doall (re-find (re-pattern extension_thumbnail) path_raw))
|
||||
path_thumbnail (str (str/join "." ( drop-last (str/split path_raw #"\."))) extension_thumbnail)
|
||||
path_thumbnail_temp (str "/tmp/" (last (str/split path_thumbnail #"\/")))]
|
||||
(prn path_thumbnail)
|
||||
(if (and (.exists (io/file path_raw)) (not is_thumbnail) (not (.exists (io/file path_thumbnail))))
|
||||
(do
|
||||
(prn (str "Optimizing: " path_raw))
|
||||
;; Optimizing with ffmpeg
|
||||
(shell/sh "ffmpeg" "-y" "-i" path_raw "-vf" (str "scale=" width_thumbnail ":-2") "-c:v" "libx264" "-crf" "23" "-profile:v" "high" "-pix_fmt" "yuv420p" "-color_primaries" "1" "-color_trc" "1" "-colorspace" "1" "-movflags" "+faststart" "-an" "-acodec" "aac" "-ab" (str width_thumbnail "kb") path_thumbnail_temp)
|
||||
(prn (str "Optimizing: " path_raw))
|
||||
(if (nil? width_thumbnail)
|
||||
;; Not width, not scale
|
||||
(shell/sh "ffmpeg" "-y" "-i" path_raw "-c:v" "libx264" "-c:a" "aac" "-ab" (str audio_quality_thumbnail) "-strict" "-2" path_thumbnail_temp)
|
||||
;; With width, scale
|
||||
(shell/sh "ffmpeg" "-y" "-i" path_raw "-vf" (str "scale=" width_thumbnail ":-2") "-c:v" "libx264" "-crf" "23" "-profile:v" "high" "-pix_fmt" "yuv420p" "-color_primaries" "1" "-color_trc" "1" "-colorspace" "1" "-movflags" "+faststart" "-an" "-c:a" "aac" "-ab" (str audio_quality_thumbnail) path_thumbnail_temp))
|
||||
(shell/sh "mv" path_thumbnail_temp path_thumbnail)
|
||||
(prn (str "Finish: " path_thumbnail))))))
|
||||
|
||||
|
Reference in New Issue
Block a user