Skip to content

Commit 813a0e8

Browse files
committed
Fixed sqa.
1 parent 1e4462e commit 813a0e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ffmpeg-player.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@
110110
:group 'ffmpeg-player)
111111

112112
(defconst ffmpeg-player--command-video-to-images
113-
"ffmpeg -i \"%s\" %s \"%s%s%s.%s\""
113+
"ffmpeg -i %s %s \"%s%s%s.%s\""
114114
"Command that convert video to image source.")
115115

116116
(defconst ffmpeg-player--command-play-audio
117-
"ffplay \"%s\" %s"
117+
"ffplay %s %s"
118118
"Command that convert video to audio source.")
119119

120120
(defconst ffmpeg-player--as-video-buffer-name "*Async Shell Command*: Video"
@@ -277,7 +277,7 @@ VOLUME of the sound from 0 ~ 100."
277277
(let ((command (car command-line-args)))
278278
(start-process "ffmpeg-player--async-delete-directory"
279279
nil command "-Q" "--batch" "--eval"
280-
(format "(delete-directory \"%s\" t)" (shell-quote-argument path)))))
280+
(format "(delete-directory %s t)" (shell-quote-argument path)))))
281281

282282
(defun ffmpeg-player--clean-video-images ()
283283
"Clean up all video images."

0 commit comments

Comments
 (0)