Revision: 3531
Author: grepper
Date: Sun Feb 15 22:48:56 2015 UTC
Log: Use variable for ffmpeg/avconv not 'ffmpeg'
https://code.google.com/p/tovid/source/detail?r=3531
Modified:
/trunk/tovid/src/todisc
=======================================
--- /trunk/tovid/src/todisc Sun Feb 15 22:47:24 2015 UTC
+++ /trunk/tovid/src/todisc Sun Feb 15 22:48:56 2015 UTC
@@ -702,7 +702,7 @@
# check if file is a video. Usage: is_video FILE
is_video ()
{
- local result=$(ffmpeg -i "$1" 2>&1);
+ local result=$($FFmpeg -i "$1" 2>&1);
# ffmpeg calls an image a video stream, so eliminate that
grep -qi image2 <<< "$result" && return 1;