diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-30 17:59:01 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-11-02 10:42:54 +0100 |
commit | 20566eb0f0e3b0f538bcf68fca42e67afaa0dec6 (patch) | |
tree | d06fd70d43d1d8ad060f36c02861579ffdca5bfd /libavformat/nsvdec.c | |
parent | 124e28847b95a70724399c8473dd778b5c4c8ffc (diff) | |
download | ffmpeg-20566eb0f0e3b0f538bcf68fca42e67afaa0dec6.tar.gz |
Replace outdated references to ffmpeg tool with avconv.
Diffstat (limited to 'libavformat/nsvdec.c')
-rw-r--r-- | libavformat/nsvdec.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 84957c6a7a..d0fac9afb0 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -71,7 +71,11 @@ * so the header seems to not be mandatory. (for streaming). * * index slice duration check (excepts nsvtrailer.nsv): - * for f in [^n]*.nsv; do DUR="$(ffmpeg -i "$f" 2>/dev/null | grep 'NSVf duration' | cut -d ' ' -f 4)"; IC="$(ffmpeg -i "$f" 2>/dev/null | grep 'INDEX ENTRIES' | cut -d ' ' -f 2)"; echo "duration $DUR, slite time $(($DUR/$IC))"; done + * for f in [^n]*.nsv; do + * DUR="$(avconv -i "$f" 2> /dev/null | grep 'NSVf duration' | cut -d ' ' -f 4)" + * IC="$(avconv -i "$f" 2> /dev/null | grep 'INDEX ENTRIES' | cut -d ' ' -f 2)" + * echo "duration $DUR, slite time $(($DUR/$IC))" + * done */ /* |